home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / ODBCINF.PAK / ODBCINFO.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  51 lines

  1. // OdbcInfo.h : main header file for the ODBCINFO application
  2. //
  3.  
  4. // This is a part of the Microsoft Foundation Classes C++ library.
  5. // Copyright (C) 1992-1996 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // Microsoft Foundation Classes Reference and related
  10. // electronic documentation provided with the library.
  11. // See these sources for detailed information regarding the
  12. // Microsoft Foundation Classes product.
  13.  
  14. #ifndef __AFXWIN_H__
  15.     #error include 'stdafx.h' before including this file for PCH
  16. #endif
  17.  
  18. #include "resource.h"        // main symbols
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21. // COdbcInfoApp:
  22. // See OdbcInfo.cpp for the implementation of this class
  23. //
  24.  
  25. class COdbcInfoApp : public CWinApp
  26. {
  27. public:
  28.     COdbcInfoApp();
  29.  
  30.     CDatabase    m_Database;
  31.     
  32.     // Overrides
  33.     // ClassWizard generated virtual function overrides
  34.     //{{AFX_VIRTUAL(COdbcInfoApp)
  35.     public:
  36.     virtual BOOL InitInstance();
  37.     virtual int ExitInstance();
  38.     //}}AFX_VIRTUAL
  39.  
  40. // Implementation
  41.  
  42.     //{{AFX_MSG(COdbcInfoApp)
  43.         // NOTE - the ClassWizard will add and remove member functions here.
  44.         //    DO NOT EDIT what you see in these blocks of generated code !
  45.     //}}AFX_MSG
  46.     DECLARE_MESSAGE_MAP()
  47. };
  48.  
  49.  
  50. /////////////////////////////////////////////////////////////////////////////
  51.